Skip to content

Commit e1be9a1

Browse files
committed
img 404 by 2
1 parent cf58436 commit e1be9a1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

astro.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { remarkReadingTime } from './src/utils/readTime.ts'
66

77
// https://astro.build/config
88
export default defineConfig({
9-
site: 'https://aismart.netlify.app/', // Write here your website url
9+
site: 'https://www.smartai.wtf/', // Write here your website url
1010
markdown: {
1111
remarkPlugins: [remarkReadingTime],
1212
drafts: true,

prettier.config.cjs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ module.exports = {
88
jsxSingleQuote: true,
99
tabWidth: 2,
1010
useTabs: true,
11-
public: '/src/assets/images/',
1211
plugins: [require.resolve('prettier-plugin-astro')],
1312
overrides: [
1413
{

tailwind.config.cjs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const defaultTheme = require('tailwindcss/defaultTheme')
33

44
module.exports = {
55
darkMode: 'class',
6-
public: '/src/assets/images/',
76
content: ['./src/**/*.{astro,html,js,md,mdx,ts}'],
87
theme: {
98
extend: {

vercel.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"rewrites": [
3+
{
4+
"source": "/src/*",
5+
"destination": "/:splat",
6+
"status": 200
7+
}
8+
]
9+
}

0 commit comments

Comments
 (0)