Skip to content
Open

wip #106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM node:20
RUN apt-get update && apt-get install -y --no-install-recommends git zip unzip curl

RUN node -v &&\
npm -v &&\
yarn -v
npm -v

EXPOSE 3000
11 changes: 0 additions & 11 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { siteUrl, defaultLang, supportedLanguages } from './src/config.ts';
import { stylify } from '@stylify/astro';
import { defineConfig } from 'astro/config';
import sitemap from "@astrojs/sitemap";
import mdx from "@astrojs/mdx";
Expand All @@ -14,16 +13,6 @@ for (const lang of Object.keys(supportedLanguages)) {
// https://astro.build/config
export default defineConfig({
integrations: [
stylify({
compiler: {
mangleSelectors: typeof process.env.STYLIFY_MANGLE_SELECTORS !== 'undefined'
},
bundles: [{
files: ['./src/**/*.{astro,ts,js,tsx,mdx}'],
outputFile: './src/assets/styles/stylify.css'
}],
importDefaultBundle: false
}),
sitemap({
i18n: {
defaultLocale: defaultLang,
Expand Down
Loading