2020-05-28 15:50:03 +00:00
|
|
|
/*
|
2022-02-04 21:10:20 +00:00
|
|
|
Copyright 2022 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
|
|
|
*/
|
|
|
|
|
2022-02-25 20:00:45 +00:00
|
|
|
import webpack from 'webpack';
|
2022-02-04 21:10:20 +00:00
|
|
|
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
|
|
|
|
import DuplicatePackageCheckerPlugin from 'duplicate-package-checker-webpack-plugin';
|
|
|
|
import WebpackRequireFrom from 'webpack-require-from';
|
|
|
|
import { URL, fileURLToPath } from 'url';
|
2020-05-26 22:23:07 +00:00
|
|
|
|
2022-02-04 21:10:20 +00:00
|
|
|
export default {
|
2020-05-26 22:23:07 +00:00
|
|
|
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(
|
2022-02-04 21:10:20 +00:00
|
|
|
fileURLToPath(new URL('src/nginxconfig/build/webpack-dynamic-import.js', import.meta.url)),
|
2021-05-18 15:33:25 +00:00
|
|
|
);
|
|
|
|
} },
|
2022-02-04 21:10:20 +00:00
|
|
|
new WebpackRequireFrom({ methodName: '__webpackDynamicImportURL', suppressErrors: true }),
|
2022-02-25 20:00:45 +00:00
|
|
|
// Pass the env in for logging
|
|
|
|
new webpack.EnvironmentPlugin({ NODE_ENV: 'development' }),
|
2021-05-18 15:33:25 +00:00
|
|
|
// Analyze the bundle
|
2021-05-18 15:39:41 +00:00
|
|
|
new BundleAnalyzerPlugin({ analyzerMode: 'static', openAnalyzer: false }),
|
|
|
|
new DuplicatePackageCheckerPlugin(),
|
|
|
|
],
|
2020-05-26 22:23:07 +00:00
|
|
|
},
|
|
|
|
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 => {
|
2022-02-04 21:10:20 +00:00
|
|
|
options[0].template = fileURLToPath(new URL('build/index.html', import.meta.url));
|
2020-05-26 22:23:07 +00:00
|
|
|
return options;
|
|
|
|
});
|
|
|
|
},
|
2020-05-27 13:17:24 +00:00
|
|
|
};
|