Skip to content

Commit f07c43e

Browse files
committed
wip
1 parent 7aed52d commit f07c43e

File tree

28 files changed

+7596
-5366
lines changed

28 files changed

+7596
-5366
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ FROM node:20
33
RUN apt-get update && apt-get install -y --no-install-recommends git zip unzip curl
44

55
RUN node -v &&\
6-
npm -v &&\
7-
yarn -v
6+
npm -v
87

98
EXPOSE 3000

astro.config.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { siteUrl, defaultLang, supportedLanguages } from './src/config.ts';
2-
import { stylify } from '@stylify/astro';
32
import { defineConfig } from 'astro/config';
43
import sitemap from "@astrojs/sitemap";
54
import mdx from "@astrojs/mdx";
@@ -14,16 +13,6 @@ for (const lang of Object.keys(supportedLanguages)) {
1413
// https://astro.build/config
1514
export default defineConfig({
1615
integrations: [
17-
stylify({
18-
compiler: {
19-
mangleSelectors: typeof process.env.STYLIFY_MANGLE_SELECTORS !== 'undefined'
20-
},
21-
bundles: [{
22-
files: ['./src/**/*.{astro,ts,js,tsx,mdx}'],
23-
outputFile: './src/assets/styles/stylify.css'
24-
}],
25-
importDefaultBundle: false
26-
}),
2716
sitemap({
2817
i18n: {
2918
defaultLocale: defaultLang,

0 commit comments

Comments
 (0)