uniwind-plugin-next 1.0.0 → 1.0.1

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/dist/index.cjs CHANGED
@@ -357,6 +357,7 @@ function withUniwind(nextConfig = {}, uniwindConfig) {
357
357
  ".web.js",
358
358
  ".web.jsx",
359
359
  ".web.ts",
360
+ ".web.tsx",
360
361
  ...config.resolve?.extensions ?? []
361
362
  ];
362
363
  config.plugins.push(new webpack.DefinePlugin({ __DEV__: JSON.stringify(process.env.NODE_ENV !== "production") }));
package/dist/index.mjs CHANGED
@@ -329,6 +329,7 @@ function withUniwind(nextConfig = {}, uniwindConfig) {
329
329
  ".web.js",
330
330
  ".web.jsx",
331
331
  ".web.ts",
332
+ ".web.tsx",
332
333
  ...config.resolve?.extensions ?? []
333
334
  ];
334
335
  config.plugins.push(new DefinePlugin({ __DEV__: JSON.stringify(process.env.NODE_ENV !== "production") }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniwind-plugin-next",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Compatibility plugin for using Uniwind with Next.js",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.0.3",