Skip to content

Commit e89cbf9

Browse files
committed
refactor(dev): Rename globals.scss to globals.css
1 parent 1e1850e commit e89cbf9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/dev/.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import baseConfig from "../../.prettierrc.json" assert { type: "json" };
66
const config = {
77
...baseConfig,
88
plugins: ["prettier-plugin-tailwindcss"],
9-
tailwindStylesheet: "./src/app/(app)/globals.scss",
9+
tailwindStylesheet: "./src/app/(app)/globals.css",
1010
};
1111

1212
export default config;

packages/dev/src/app/(app)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import "./globals.scss";
2+
import "./globals.css";
33

44
const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
55
return (

0 commit comments

Comments
 (0)