Created
March 17, 2020 11:31
-
-
Save moacode/9cee9cfdaa52d3b60716eab150c02d16 to your computer and use it in GitHub Desktop.
Webpack dev config with support for build types using the `--env` flag. For example, `--env.BUILD_TYPE=legacy`.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// webpack.dev.js - developmental builds | |
const LEGACY_CONFIG = "legacy"; | |
const MODERN_CONFIG = "modern"; | |
// node modules | |
const merge = require("webpack-merge"); | |
const path = require("path"); | |
const webpack = require("webpack"); | |
const DashboardPlugin = require("webpack-dashboard/plugin"); | |
// config files | |
const common = require("./webpack.common.js"); | |
const pkg = require("./package.json"); | |
const settings = require("./webpack.settings.js"); | |
// Configure the webpack-dev-server | |
const configureDevServer = buildType => { | |
return { | |
public: settings.devServerConfig.public(), | |
contentBase: path.resolve(__dirname, settings.paths.templates), | |
host: settings.devServerConfig.host(), | |
port: settings.devServerConfig.port(), | |
https: !!parseInt(settings.devServerConfig.https()), | |
disableHostCheck: true, | |
hot: true, | |
overlay: true, | |
watchContentBase: true, | |
watchOptions: { | |
poll: !!parseInt(settings.devServerConfig.poll()), | |
ignored: /node_modules/ | |
}, | |
headers: { | |
"Access-Control-Allow-Origin": "*" | |
} | |
}; | |
}; | |
// Configure Image loader | |
const configureImageLoader = buildType => { | |
return { | |
test: /\.(png|jpe?g|gif|webp)$/i, | |
use: [ | |
{ | |
loader: "file-loader", | |
options: { | |
name: "img/[name].[hash].[ext]" | |
} | |
} | |
] | |
}; | |
}; | |
// Configure SVG loader | |
const configureSVGLoader = () => { | |
return { | |
test: /\.svg$/, | |
rules: [ | |
{ | |
oneOf: [ | |
{ | |
loader: "vue-svg-loader" | |
}, | |
{ | |
resourceQuery: /^\?external/, | |
loader: "file-loader", | |
options: { | |
name: "img/[name].[hash].[ext]" | |
} | |
} | |
] | |
} | |
] | |
}; | |
}; | |
// Configure the Postcss loader | |
const configurePostcssLoader = buildType => { | |
return { | |
test: /\.(pcss|css)$/, | |
use: [ | |
{ | |
loader: "style-loader" | |
}, | |
{ | |
loader: "vue-style-loader" | |
}, | |
{ | |
loader: "css-loader", | |
options: { | |
importLoaders: 2, | |
sourceMap: true | |
} | |
}, | |
{ | |
loader: "resolve-url-loader" | |
}, | |
{ | |
loader: "postcss-loader", | |
options: { | |
sourceMap: true | |
} | |
} | |
] | |
}; | |
}; | |
// Define the legacy webpack config | |
const legacyConfig = merge(common.legacyConfig, { | |
output: { | |
filename: path.join("./js", "[name]-legacy.[hash].js"), | |
publicPath: settings.devServerConfig.public() + "/" | |
}, | |
mode: "development", | |
devtool: "cheap-source-map", | |
devServer: configureDevServer(LEGACY_CONFIG), | |
module: { | |
rules: [ | |
configurePostcssLoader(LEGACY_CONFIG), | |
configureImageLoader(LEGACY_CONFIG), | |
configureSVGLoader(LEGACY_CONFIG) | |
] | |
}, | |
plugins: [new webpack.HotModuleReplacementPlugin()] | |
}); | |
// Define the modern webpack config | |
const modernConfig = merge(common.modernConfig, { | |
output: { | |
filename: path.join("./js", "[name].[hash].js"), | |
publicPath: settings.devServerConfig.public() + "/" | |
}, | |
mode: "development", | |
devtool: "cheap-source-map", | |
devServer: configureDevServer(MODERN_CONFIG), | |
module: { | |
rules: [ | |
configurePostcssLoader(MODERN_CONFIG), | |
configureImageLoader(MODERN_CONFIG), | |
configureSVGLoader(MODERN_CONFIG) | |
] | |
}, | |
plugins: [new webpack.HotModuleReplacementPlugin(), new DashboardPlugin()] | |
}); | |
// Development module exports | |
module.exports = env => { | |
const BUILD_TYPE = env && env.BUILD_TYPE; | |
// Output either a legacy, modern or combined config. | |
// Defaults to modern for development. | |
switch (BUILD_TYPE) { | |
case "combined": | |
return [legacyConfig, modernConfig]; | |
case "legacy": | |
return [legacyConfig]; | |
case "modern": | |
default: | |
return [modernConfig]; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment