6

使用时,nuxt generate我正在生成大小恰好约为 300 kB 的各种 HTML 页面。该文件的大部分是内嵌的 CSS 样式。是否可以将其放入外部文件并减小 HTML 的大小?

4

1 回答 1

17

您可以使用以下方法将主块中的 CSS 提取到单独的 CSS 文件中

nuxt.config.js

module.exports = {
  build: {
    extractCSS: true
  }
}

这记录在这里

如果要全局导入 css 文件,请使用

module.exports = {
  css: [
    // Load a Node.js module directly (here it's a Sass file)
    'bulma',
    // CSS file in the project
    '@/assets/css/main.css',
    // SCSS file in the project
    '@/assets/css/main.scss'
  ]
}

如此处所述

于 2018-06-20T11:23:39.740 回答