View | Details | Raw Unified | Return to bug 37911
Collapse All | Expand All

(-)a/rspack.config.js (-3 / +6 lines)
Lines 82-88 module.exports = [ Link Here
82
    },
82
    },
83
    {
83
    {
84
        experiments: {
84
        experiments: {
85
            css: true,
86
            outputModule: true,
85
            outputModule: true,
87
        },
86
        },
88
        entry: {
87
        entry: {
Lines 126-132 module.exports = [ Link Here
126
                        path.resolve(__dirname, "t/cypress/"),
125
                        path.resolve(__dirname, "t/cypress/"),
127
                    ],
126
                    ],
128
                    type: "javascript/auto",
127
                    type: "javascript/auto",
129
                }
128
                },
129
                {
130
                    test: /\.css$/i,
131
                    type: "javascript/auto",
132
                    use: ["style-loader", "css-loader"],
133
                },
130
            ],
134
            ],
131
        },
135
        },
132
        plugins: [
136
        plugins: [
133
- 

Return to bug 37911