@acebuilder/component-tagger 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -14,6 +14,10 @@ const componentTagger = (pluginOptions = {}) => (inputConfig = {}) => {
|
|
|
14
14
|
/** @type {import('next').NextConfig} */
|
|
15
15
|
const nextConfig = {
|
|
16
16
|
...inputConfig,
|
|
17
|
+
// Next.js 16: webpack hook from this plugin requires an explicit turbopack section.
|
|
18
|
+
turbopack: {
|
|
19
|
+
...(inputConfig.turbopack || {}),
|
|
20
|
+
},
|
|
17
21
|
webpack(config, options) {
|
|
18
22
|
config.module.rules.push({
|
|
19
23
|
test,
|
package/package.json
CHANGED