For AI agents: the complete documentation index is available at /next/zh/llms.txt, the full documentation bundle is available at /next/zh/llms-full.txt, and this page is available as Markdown at /next/zh/api/rspeedy/rspeedy.dev.writetodisk.md.
Rspeedy logo
Rspeedy
  • 简体中文
  • Home > @lynx-js/rspeedy > Dev > writeToDisk

    Dev.writeToDisk property

    Used to control whether the build artifacts of the development environment are written to the disk.

    Signature:

    writeToDisk?: boolean | ((filename: string) => boolean) | undefined;

    Default Value

    true

    Remarks

    This is bypassed to `webpack-dev-middleware`.

    Setting writeToDisk: true won't change the behavior of the webpack-dev-middleware, and bundle files accessed through the browser will still be served from memory.

    This option also accepts a Function value, which can be used to filter which files are written to disk.

    The function follows the same premise as Array#filter in which a return value of false will not write the file, and a return value of true will write the file to disk.

    Example

    // lynx.config.ts
    import { defineConfig } from '@lynx-js/rspeedy'
    export default defineConfig({
      dev: {
        writeToDisk: (filePath) => /superman\.css$/.test(filePath),
      },
    })
    除非另有说明,本项目采用知识共享署名 4.0 国际许可协议进行许可,代码示例采用 Apache License 2.0 许可协议进行许可。