-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvue.config.js
38 lines (30 loc) · 1.01 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const { WebpackManifestPlugin } = require("webpack-manifest-plugin");
const nodeExternals = require("webpack-node-externals");
module.exports = {
devServer: {
proxy: 'http://localhost:3001'
},
filenameHashing: false,
chainWebpack: webpackConfig => {
if (!process.env.SSR) {
return;
}
webpackConfig
.entry("app")
.clear()
.add("./src/main.server.js");
webpackConfig.target("node");
webpackConfig.output.libraryTarget("commonjs2");
webpackConfig
.plugin("manifest")
.use(new WebpackManifestPlugin({ fileName: "ssr-manifest.json" }));
webpackConfig.externals(nodeExternals({ allowlist: /\.(css|vue)$/ }));
webpackConfig.optimization.minimize(false);
webpackConfig.optimization.splitChunks(false);
webpackConfig.plugins.delete("hmr");
webpackConfig.plugins.delete("preload");
webpackConfig.plugins.delete("prefetch");
webpackConfig.plugins.delete("progress");
// webpackConfig.plugins.delete("friendly-errors");
}
};