Skip to content

Commit a4b744a

Browse files
committed
chore(apps): create a vite-playground and update next-playground
1 parent f97b6f4 commit a4b744a

58 files changed

Lines changed: 757 additions & 185 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
88

9+
next-env.d.ts
10+
911
# Dependency directories
1012
node_modules/
1113

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# playground
1+
# next-playground
22

33
This is a minimal next.js app to use when creating new components that does not
44
require the full setup of the docs server. This is pretty much
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { type NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
reactStrictMode: true,
5+
poweredByHeader: false,
6+
pageExtensions: ["ts", "tsx", "mdx"],
7+
8+
sassOptions: {
9+
implementation: "sass-embedded",
10+
},
11+
};
12+
13+
export default nextConfig;

0 commit comments

Comments
 (0)