refactor: bootstrap4 => bootstrap5 #200

Merged
Hide_D merged 15 commits from no_bootstrap4 into devel 2021-12-11 02:53:56 +09:00
4 changed files with 49 additions and 5 deletions
Showing only changes of commit 08178dd3aa - Show all commits
+2 -2
View File
@@ -108,11 +108,11 @@ input::-webkit-input-placeholder {
background-repeat: no-repeat;
background-position: bottom center;
margin-top: 5px;
background-image: url('../oauth_kakao/kakao_login_join.png');
background-image: url('/oauth_kakao/kakao_login_join.png');
}
#btn_kakao_login:hover {
background-image: url('../oauth_kakao/kakao_login_join_ov.png');
background-image: url('/oauth_kakao/kakao_login_join_ov.png');
}
#bottom_box .container {
+1 -1
View File
@@ -51,7 +51,7 @@
</template>
<script lang="ts">
import { BoardArticleItem } from "@/Board.vue";
import BoardComment from "@/BoardComment.vue";
import BoardComment from "@/components/BoardComment.vue";
import { defineComponent, PropType } from "vue";
import axios from "axios";
import { convertFormData } from "@util/convertFormData";
+1
View File
@@ -10,6 +10,7 @@ import { InvalidResponse } from '@/defs';
import { delay } from '@util/delay';
import '@/gateway/common';
import '@scss/gateway/login.scss';
type LoginResponse = {
result: true,
+45 -2
View File
@@ -274,7 +274,29 @@ module.exports = (env, argv) => {
{
test: /.(s?[ac]ss)$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader']
}]
},
{
test: /\.(png|jpe?g|gif|webp)$/,
use: [
{
loader: 'file-loader',
options: {
name: '../dist_misc/[name].[contenthash:8].[ext]'
}
}
]
},
{
test: /\.(svg)$/,
use: [
{
loader: 'file-loader',
options: {
name: '../dist_misc/[name].[contenthash:8].[ext]'
}
}
]
},]
},
plugins: [
new CleanTerminalPlugin(),
@@ -382,7 +404,28 @@ module.exports = (env, argv) => {
}, {
test: /.(s?[ac]ss)$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader']
}]
}, {
test: /\.(png|jpe?g|gif|webp)$/,
use: [
{
loader: 'file-loader',
options: {
name: '../dist_misc/[name].[contenthash:8].[ext]'
}
}
]
},
{
test: /\.(svg)$/,
use: [
{
loader: 'file-loader',
options: {
name: '../dist_misc/[name].[contenthash:8].[ext]'
}
}
]
},]
},
plugins: [
new MiniCssExtractPlugin({