最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to extract css as a separate .css file in Vite? - Stack Overflow

programmeradmin2浏览0评论

In webpack it is possible to generate output in such a way:

  • 1 file with bundled js code
  • 1 file with bundled css

This is part of the webpack config, that results in such output:

const MiniCssExtractPlugin = require('mini-css-extract-plugin')

...

plugins: [
  new MiniCssExtractPlugin({
    filename: 'assets/css/styles.css',
    chunkFilename: '[id].css',
  }),
  ...
],

...

{
  test: /\.css$/,
  use: [
    {
      loader: MiniCssExtractPlugin.loader,
    },
    {
      loader: 'css-loader',
    },
  ],
},

...

How to achieve this with vite?

The vite templates by default generate config, where js and css are bundled into a single file and css is injected at runtime.

In webpack it is possible to generate output in such a way:

  • 1 file with bundled js code
  • 1 file with bundled css

This is part of the webpack config, that results in such output:

const MiniCssExtractPlugin = require('mini-css-extract-plugin')

...

plugins: [
  new MiniCssExtractPlugin({
    filename: 'assets/css/styles.css',
    chunkFilename: '[id].css',
  }),
  ...
],

...

{
  test: /\.css$/,
  use: [
    {
      loader: MiniCssExtractPlugin.loader,
    },
    {
      loader: 'css-loader',
    },
  ],
},

...

How to achieve this with vite?

The vite templates by default generate config, where js and css are bundled into a single file and css is injected at runtime.

Share Improve this question asked Nov 5, 2022 at 13:41 DanielDaniel 1,6115 gold badges20 silver badges41 bronze badges 1
  • Hi @Daniel , you can use rollup-plugin-css-only npm package. – Jagroop Commented Apr 1, 2023 at 5:38
Add a ment  | 

1 Answer 1

Reset to default 4 +50

You can use the option build.cssCodeSplit to turn off the runtime CSS injection.

From the Vite docs:

If you'd rather have all the CSS extracted into a single file, you can disable CSS code splitting by setting build.cssCodeSplit to false.

发布评论

评论列表(0)

  1. 暂无评论