fix: 修改缓存等级

This commit is contained in:
winixt 2022-04-11 16:47:46 +08:00
parent e106df121c
commit f16579c5a1
4 changed files with 4 additions and 3 deletions

View File

@ -280,7 +280,6 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
const memo = webpackConfig.toConfig(); const memo = webpackConfig.toConfig();
memo.infrastructureLogging = { memo.infrastructureLogging = {
...memo.infrastructureLogging, ...memo.infrastructureLogging,
level: 'verbose',
}; };
memo.output = { memo.output = {
...memo.output, ...memo.output,

View File

@ -1,3 +1,4 @@
import { defineComponent } from 'vue'; import { defineComponent } from 'vue';
import { RouterView } from '{{{ runtimePath }}}';
export default defineComponent(() => () => (<RouterView></RouterView>)); export default defineComponent(() => () => (<RouterView></RouterView>));

View File

@ -61,7 +61,9 @@ export default function (api) {
const defaultContainerName = 'defaultContainer'; const defaultContainerName = 'defaultContainer';
api.writeTmpFile({ api.writeTmpFile({
path: `${defaultContainerName}.jsx`, path: `${defaultContainerName}.jsx`,
content: readFileSync(join(__dirname, `./${defaultContainerName}.tpl`), 'utf-8'), content: Mustache.render(readFileSync(join(__dirname, `./${defaultContainerName}.tpl`), 'utf-8'), {
runtimePath,
}),
}); });
}); });
} }

View File

@ -5,7 +5,6 @@ export default {
define: { define: {
__DEV__: false __DEV__: false
}, },
publicPath: './',
html: { html: {
title: '海贼王' title: '海贼王'
}, },