2020-05-28 15:50:03 +00:00
|
|
|
/*
|
2021-01-05 15:29:13 +00:00
|
|
|
Copyright 2021 DigitalOcean
|
2020-05-28 15:50:03 +00:00
|
|
|
|
2020-06-04 13:44:30 +00:00
|
|
|
This code is licensed under the MIT License.
|
2020-05-28 15:50:03 +00:00
|
|
|
You may obtain a copy of the License at
|
2020-06-04 13:44:30 +00:00
|
|
|
https://github.com/digitalocean/nginxconfig.io/blob/master/LICENSE or https://mit-license.org/
|
2020-05-28 15:50:03 +00:00
|
|
|
|
2020-06-04 13:44:30 +00:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions :
|
2020-05-28 15:50:03 +00:00
|
|
|
|
2020-06-04 13:44:30 +00:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
2020-05-28 15:50:03 +00:00
|
|
|
*/
|
|
|
|
|
2020-05-26 22:23:07 +00:00
|
|
|
const path = require('path');
|
2020-05-27 13:17:24 +00:00
|
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin');
|
2021-01-05 15:29:13 +00:00
|
|
|
const WebpackRequireFrom = require('webpack-require-from');
|
2020-05-26 22:23:07 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
publicPath: './',
|
|
|
|
outputDir: 'dist',
|
2020-06-05 19:32:13 +00:00
|
|
|
filenameHashing: false, // Don't hash the output, so we can embed on the DigitalOcean Community
|
2020-06-04 20:26:37 +00:00
|
|
|
productionSourceMap: false,
|
2021-02-19 17:54:58 +00:00
|
|
|
devServer: {
|
|
|
|
historyApiFallback: false, // Don't serve index.html for 404s in dev
|
|
|
|
},
|
2020-05-26 22:23:07 +00:00
|
|
|
configureWebpack: {
|
2020-06-05 19:32:13 +00:00
|
|
|
node: false, // Disable Node.js polyfills (Buffer etc.) -- This will be default in Webpack 5
|
2020-05-26 22:23:07 +00:00
|
|
|
plugins: [
|
2021-05-18 15:33:25 +00:00
|
|
|
// Fix dynamic imports from CDN (inject as first entry point before any imports can happen)
|
|
|
|
{ apply: compiler => {
|
|
|
|
compiler.options.entry.app.import.unshift(
|
|
|
|
path.join(__dirname, 'src', 'nginxconfig', 'build', 'webpack-dynamic-import.js'),
|
|
|
|
);
|
|
|
|
} },
|
|
|
|
new WebpackRequireFrom({ methodName: '__webpackDynamicImportURL' }),
|
|
|
|
// Analyze the bundle
|
2020-05-26 22:23:07 +00:00
|
|
|
process.argv.includes('--analyze') && new BundleAnalyzerPlugin(),
|
2020-05-27 13:17:24 +00:00
|
|
|
process.argv.includes('--analyze') && new DuplicatePackageCheckerPlugin(),
|
2020-05-26 22:23:07 +00:00
|
|
|
].filter(x => !!x),
|
|
|
|
},
|
|
|
|
chainWebpack: config => {
|
2021-03-29 14:02:01 +00:00
|
|
|
// Inject resolve-url-loader into the SCSS loader rules (to allow relative fonts in do-bulma to work)
|
|
|
|
for (const rule of ['vue-modules', 'vue', 'normal-modules', 'normal']) {
|
|
|
|
config.module.rule('scss')
|
|
|
|
.oneOf(rule)
|
|
|
|
.use('resolve-url-loader')
|
|
|
|
.loader('resolve-url-loader')
|
|
|
|
.before('sass-loader')
|
|
|
|
.end()
|
|
|
|
.use('sass-loader')
|
|
|
|
.loader('sass-loader')
|
|
|
|
.tap(options => ({ ...options, sourceMap: true }));
|
|
|
|
}
|
|
|
|
|
2020-05-26 22:23:07 +00:00
|
|
|
// Use a custom HTML template
|
|
|
|
config.plugin('html').tap(options => {
|
|
|
|
options[0].template = path.join(__dirname, 'build', 'index.html');
|
|
|
|
return options;
|
|
|
|
});
|
|
|
|
},
|
2020-05-27 13:17:24 +00:00
|
|
|
};
|