fix: 修改缓存等级

This commit is contained in:
winixt 2022-04-11 16:47:46 +08:00
parent 5bab331be6
commit f20fb7a371
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();
memo.infrastructureLogging = {
...memo.infrastructureLogging,
level: 'verbose',
};
memo.output = {
...memo.output,

View File

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

View File

@ -61,7 +61,9 @@ export default function (api) {
const defaultContainerName = 'defaultContainer';
api.writeTmpFile({
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: {
__DEV__: false
},
publicPath: './',
html: {
title: '海贼王'
},