File tree 10 files changed +1828
-922
lines changed
10 files changed +1828
-922
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,11 @@ out/
107
107
# Overmind files
108
108
.overmind.sock
109
109
110
+ # build output
111
+ dist /
112
+ # generated types
113
+ .astro /
114
+
110
115
# Generated files
111
116
.build
112
117
.assets
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [" astro-build.astro-vscode" ],
3
+ "unwantedRecommendations" : []
4
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "command" : " ./node_modules/.bin/astro dev" ,
6
+ "name" : " Development server" ,
7
+ "request" : " launch" ,
8
+ "type" : " node-terminal"
9
+ }
10
+ ]
11
+ }
Original file line number Diff line number Diff line change 2
2
"editor.tabSize" : 2 ,
3
3
"editor.insertSpaces" : true ,
4
4
"editor.detectIndentation" : false ,
5
- "eslint.autoFixOnSave" : true ,
6
5
"git.detectSubmodules" : false ,
7
6
"editor.rulers" : [
8
7
80
17
16
"editor.formatOnSaveMode" : " file" ,
18
17
"editor.defaultFormatter" : " esbenp.prettier-vscode" ,
19
18
},
20
- "[javascriptreact ]" : {
19
+ "[scss ]" : {
21
20
"editor.formatOnSaveMode" : " file" ,
22
21
"editor.defaultFormatter" : " esbenp.prettier-vscode" ,
23
22
},
24
- "[scss ]" : {
23
+ "[astro ]" : {
25
24
"editor.formatOnSaveMode" : " file" ,
26
- "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
25
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
27
26
},
28
- "workbench.editor.labelFormat" : " short"
27
+ "workbench.editor.labelFormat" : " short" ,
28
+ "prettier.documentSelectors" : [" **/*.astro" ]
29
29
}
Original file line number Diff line number Diff line change
1
+ import { defineConfig } from 'astro/config' ;
2
+ import settings from './src/settings/global.json' ;
3
+
4
+ // https://astro.build/config
5
+ export default defineConfig ( {
6
+ site : settings . websiteUrl ,
7
+ } ) ;
Original file line number Diff line number Diff line change
1
+ // Place any global data in this file.
2
+ // You can import this data from anywhere in your site by using the `import` keyword.
3
+
4
+ export const SITE_TITLE = '30 seconds of code' ;
5
+ export const SITE_DESCRIPTION = 'Short code snippets for all your development needs' ;
Original file line number Diff line number Diff line change
1
+ /// <reference path="../.astro/types.d.ts" />
2
+ /// <reference types="astro/client" />
You can’t perform that action at this time.
0 commit comments