Skip to content

Commit 682f7d4

Browse files
committed
disable multi-line-comment-removal plugin
1 parent a21921d commit 682f7d4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/nextjs/rollup.npm.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { makeBaseNPMConfig, makeNPMConfigVariants, plugins } from '../../rollup/index.js';
1+
import { makeBaseNPMConfig, makeNPMConfigVariants } from '../../rollup/index.js';
22

33
export default [
44
...makeNPMConfigVariants(
@@ -17,7 +17,8 @@ export default [
1717
entrypoints: ['src/config/templates/prefixLoaderTemplate.ts', 'src/config/templates/proxyLoaderTemplate.ts'],
1818

1919
packageSpecificConfig: {
20-
plugins: [plugins.makeRemoveMultiLineCommentsPlugin()],
20+
// TODO: Turn this off until the regex can be fixed
21+
// plugins: [plugins.makeRemoveMultiLineCommentsPlugin()],
2122
output: {
2223
// Preserve the original file structure (i.e., so that everything is still relative to `src`)
2324
entryFileNames: 'config/templates/[name].js',

0 commit comments

Comments
 (0)