forked from shubhadip/vuex-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
58 lines (51 loc) · 1.65 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const ManifestPlugin = require("webpack-manifest-plugin");
const nodeExternals = require("webpack-node-externals");
const webpack = require("webpack");
const path = require("path");
exports.chainWebpack = webpackConfig => {
if (!process.env.VUE_APP_SSR) {
webpackConfig.resolve.alias.set(
"vue3-component-library/components",
path.resolve(__dirname, "node_modules/vue3-component-library/dist/esm")
);
} else {
webpackConfig.resolve.alias.set(
"vue3-component-library/components",
path.resolve(__dirname, "node_modules/vue3-component-library/dist/cjs")
);
}
if (!process.env.VUE_APP_SSR) {
// This is required for repl.it to play nicely with the Dev Server
webpackConfig.devServer.disableHostCheck(true);
webpackConfig
.entry("app")
.clear()
.add("./src/entry-client.ts");
return;
}
webpackConfig
.entry("app")
.clear()
.add("./src/entry-server.ts");
webpackConfig.target("node");
webpackConfig.output.libraryTarget("commonjs2");
webpackConfig
.plugin("manifest")
.use(new ManifestPlugin({ fileName: "ssr-manifest.json" }));
webpackConfig.externals(
nodeExternals({
allowlist: [/\.(css|vue)$/, "vue3-component-library/components/testworld"]
})
);
webpackConfig.optimization.splitChunks(false).minimize(false);
webpackConfig.plugins.delete("hmr");
webpackConfig.plugins.delete("preload");
webpackConfig.plugins.delete("prefetch");
webpackConfig.plugins.delete("progress");
webpackConfig.plugins.delete("friendly-errors");
webpackConfig.plugin("limit").use(
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1
})
);
};